home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2008 June / Macworld June 2008 CD.bin / LogMeIn / LogMeInMac.dmg / LogMeIn Installer.pkg / Contents / Resources / InstallationCheck < prev    next >
Encoding:
Text File  |  2008-02-12  |  170 b   |  11 lines

  1. #!/usr/bin/env bash
  2.  
  3. PKMKSHELLUTILITY=$1/Contents/Resources/pkmkshellutility
  4.  
  5. RESULT=`$PKMKSHELLUTILITY --gestalt sysv`
  6. if [ $RESULT < '4160' ]; then
  7.     exit 97
  8. fi
  9.  
  10.  
  11. exit 0